home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 July / macformat52.iso / mac / Shareware Plus / Developers / YAAF v1.0 alpha 1 / (Sources) / Standard Controls / Lists / XGStdList.cpp next >
Encoding:
C/C++ Source or Header  |  1997-04-24  |  1.7 KB  |  65 lines

  1. /*    XGStdList.cpp
  2.  *
  3.  *        This handles the standard list hooks
  4.  */
  5.  
  6. /*  YAAF - Yet another application framework
  7.  *  Copyright (C) 1997 William Edward Woody and In Phase Consulting
  8.  *  
  9.  *  This library is free software; you can redistribute it
  10.  *  and/or modify it under the terms of the GNU Library
  11.  *  General Public License as published by the Free Software
  12.  *  Foundation; either version 2 of the License, or any
  13.  *  later version.
  14.  *  
  15.  *  This library is distributed in the hope that it will be
  16.  *  useful, but WITHOUT ANY WARRANTY; without even the implied
  17.  *  warranty of MERCHANTABIILITY or FITNESS FOR A PARTICULAR
  18.  *  PURPOSE. See the GNU Library General Public License for
  19.  *  more details.
  20.  *  
  21.  *  You should have received a copy of the GNU Library General
  22.  *  Public License along with this library; if not, write to the
  23.  *  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  24.  *  Boston, MA 02111-1307, USA.
  25.  *  
  26.  *  To contact the author, either e-mail me at
  27.  *  woody@alumni.caltech.edu, or write to us at
  28.  *  
  29.  *          William Edward Woody
  30.  *          In Phase Consulting
  31.  *          1545 Ard Eevin Avenue
  32.  *          Glendale, CA 91202
  33.  */
  34.  
  35. #include <XStdList.h>
  36.  
  37. /************************************************************************/
  38. /*                                                                        */
  39. /*    Construction/Destruction                                            */
  40. /*                                                                        */
  41. /************************************************************************/
  42.  
  43. /*    XGStdList::XGStdList
  44.  *
  45.  *        Construct this thing
  46.  */
  47.  
  48. XGStdList::XGStdList(XGView *p, XGArgStream &s, bool f) : XGView(p,s,f)
  49. {
  50. }
  51.  
  52. XGStdList::XGStdList(XGView *p, XGSViewInitRecord &s, bool f) : XGView(p,s,f)
  53. {
  54. }
  55.  
  56. /*    XGStdList::~XGStdList
  57.  *
  58.  *        Fry me
  59.  */
  60.  
  61. XGStdList::~XGStdList()
  62. {
  63. }
  64.  
  65.